Scheduled Meeting - Fetch a scheduled meeting
This API fetches details of a scheduled meeting using the provided meetingId. Required OAuth scope: meeting:read
- To grant permission to read the scheduled meeting details
Path Parameters
The ID of the meeting.
Header Parameters
The content type should be application/json
- 200
- 400
- 401
- 412
Success
Schema
- Array [
- ]
The unique identifier for the JioMeet session.
The topic or title of the meeting.
The start time of the meeting in ISO format.
The end time of the meeting in ISO format.
The scheduled duration of the meeting in milliseconds.
The URL to join the meeting.
The current status of the meeting.
The PIN required to join the meeting room.
The system-generated unique identifier for the meeting.
[
{
"jiomeetId": "string",
"topic": "string",
"startTime": "2024-06-11T05:55:24.949Z",
"endTime": "2024-06-11T05:55:24.949Z",
"scheduledDuration": 0,
"meetingUrl": "string",
"status": "string",
"pin": "string",
"_id": "string"
}
]
Example fetch scheduled meeting response
[
{
"jiomeetId": "7212310665",
"topic": "Meeting created at 07:09 AM",
"startTime": "2023-09-08T02:39:27.000Z",
"endTime": "2023-09-08T03:09:27.000Z",
"scheduledDuration": 1800000,
"meetingUrl": "https://jiomeetpro.jio.com/shortener?meetingId=7212310665&pwd=7mVhq",
"status": "active",
"pin": "7mVhq",
"_id": "sm-aed12dea-60d2-4757-9705-6c93dce0e3f0"
}
]
Schema
Status Code of the API
The error code of the API
The error message of the API
{
"customCode": 0,
"message": "string"
}
Schema
Status Code of the API
The error code of the API
The error message of the API
{
"customCode": 0,
"message": "string"
}
Schema
Status Code of the API
The error code of the API
The errors array which includes objects with a "property" and "message" properties describing the error
{
"customCode": 0,
"message": "string"
}